body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #0a1f3d;
}

.article-header {
  padding: 40px 24px 20px;
  background: #f0f4f8;
  text-align: center;
}

.article-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 0.95rem;
  color: #555;
}

.article-body {
  padding: 24px;
  max-width: 800px;
  margin: auto;
}

.article-body h2 {
  margin-top: 32px;
  font-size: 1.4rem;
  color: #0a1f3d;
}

.cta {
  margin-top: 40px;
  background: #eaf6ff;
  padding: 20px;
  border-left: 4px solid #48a9f8;
}

.cta-link {
  display: inline-block;
  margin-top: 12px;
  color: #0a1f3d;
  font-weight: bold;
  text-decoration: underline;
}

.article-footer {
  text-align: center;
  padding: 24px;
}

.back-link {
  color: #0a1f3d;
  text-decoration: none;
  font-weight: bold;
}
/*CLARITATE IN interfete */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a1f3d;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container img.logo {
  height: 35px;
  object-fit: contain;
  border-radius: 8px; /* rotunjire colțuri */
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #e6eaec;
}

.burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1f6bd4;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Header */
.blog-header {
  position: relative;
  text-align: center;
  color: white;
  padding: 80px 20px;
  background: linear-gradient(to right, #0a1f3d, #122b54);
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.blog-header .subtitle {
  font-size: 1.2rem;
  color: #48a9f8;
}

.blog-header .tagline {
  font-size: 1rem;
  margin-top: 10px;
}

/* Article */
.breaking-article {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
}

.article-section h2 {
  font-size: 1.6rem;
  margin: 20px 0 10px;
  color: #0a1f3d;
  border-left: 4px solid #48a9f8;
  padding-left: 8px;
}

.article-section ul {
  list-style: none;
  padding: 0;
}

.article-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.article-section ul li::before {
  content: "•";
  color: #48a9f8;
  position: absolute;
  left: 0;
}

blockquote {
  font-style: italic;
  background: #f0f6fb;
  border-left: 4px solid #48a9f8;
  padding: 12px 16px;
  margin: 20px 0;
  color: #333;
}

.article-footer .cta {
  margin-top: 30px;
  font-weight: bold;
  text-align: center;
  color: #0a1f3d;
}